projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22f3368
)
armv8: minor fix to comment for enabling SMPEN bit
author
Dinh Nguyen
<
[email protected]
>
Thu, 27 Apr 2017 04:36:03 +0000
(23:36 -0500)
committer
Tom Rini
<
[email protected]
>
Mon, 15 May 2017 14:38:04 +0000
(10:38 -0400)
The SMPEN bit is located in the cpuectlr_el1 register and not the
cpuactlr_el1 register. Adjust the comment accordingly and also fix
a spelling error.
Signed-off-by: Dinh Nguyen <
[email protected]
>
CC: Mingkai Hu <
[email protected]
>
CC: Gong Qianyu <
[email protected]
>
CC: Mateusz Kulikowski <
[email protected]
>
CC: Hou Zhiqiang <
[email protected]
>
CC: York Sun <
[email protected]
>
CC: Albert Aribaud <
[email protected]
>
CC: Masahiro Yamada <
[email protected]
>
Reviewed-by: York Sun <
[email protected]
>
arch/arm/cpu/armv8/start.S
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/armv8/start.S
b/arch/arm/cpu/armv8/start.S
index 62d97f7e882225a027390e8d2b6f13c4a6a606de..354468b9053d5e03d7ca8d513ce33623abd47c32 100644
(file)
--- a/
arch/arm/cpu/armv8/start.S
+++ b/
arch/arm/cpu/armv8/start.S
@@
-86,12
+86,12
@@
save_boot_params_ret:
0:
/*
- * Ena
lb
e SMPEN bit for coherency.
+ * Ena
bl
e SMPEN bit for coherency.
* This register is not architectural but at the moment
* this bit should be set for A53/A57/A72.
*/
#ifdef CONFIG_ARMV8_SET_SMPEN
- mrs x0, S3_1_c15_c2_1 /* cpu
a
ctlr_el1 */
+ mrs x0, S3_1_c15_c2_1 /* cpu
e
ctlr_el1 */
orr x0, x0, #0x40
msr S3_1_c15_c2_1, x0
#endif